GetNodeForLocationResponse

data class GetNodeForLocationResponse(backendNodeId: BackendNodeId, frameId: FrameId, nodeId: NodeId?)

Represents response frame that is returned from DOM#getNodeForLocation operation call. Returns node id at given location. Depending on whether DOM domain is enabled, nodeId is either returned or not.

See also

Constructors

GetNodeForLocationResponse
Link copied to clipboard
fun GetNodeForLocationResponse(backendNodeId: BackendNodeId, frameId: FrameId, nodeId: NodeId? = null)

Properties

backendNodeId
Link copied to clipboard
val backendNodeId: BackendNodeId
Resulting node.
frameId
Link copied to clipboard
val frameId: FrameId
Frame this node belongs to.
nodeId
Link copied to clipboard
val nodeId: NodeId? = null
Id of the node at given coordinates, only when enabled and requested document.

Sources

jvm source
Link copied to clipboard